.slider-container {
            position: relative;
            width: 100%;
            margin: 0;
            overflow: hidden;
        }

        .slider {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
        }

        .slide {
            flex: 0 0 100%;
            width: 100%;
        }

        .slide img {
            width: 100%;
            height: auto;
            display: block;
            max-width: 100%;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .prev-btn, .next-btn {
            background: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 10px 15px;
            border: none;
            cursor: pointer;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        .prev-btn:hover, .next-btn:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .slide {
            position: relative;
            flex: 0 0 100%;
            width: 100%;
        }

        .slide-content {
            position: absolute;
            bottom: 60px;
            left: 0;
            width: 100%;
            text-align: center;
            z-index: 2;
        }

        .slider-heading {
            color: white;
            font-size: 28px;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-weight: 600;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
            will-change: opacity, transform;
        }

        .slide.active .slider-heading {
            opacity: 1;
            transform: translateY(0);
        }

        .dots-container {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            display: flex;
            gap: 10px;
            justify-content: center;
            z-index: 2;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .dot.active {
            background: white;
        }

        @media (max-width: 768px) {
            .prev-btn, .next-btn {
                padding: 8px 12px;
            }

            .slider-bottom {
                bottom: 15px;
            }

            .slider-heading {
                font-size: 20px;
                margin-bottom: 10px;
            }

            .dot {
                width: 8px;
                height: 8px;
            }
        }